cfc64fac554bda1721905e51fc8b37458f6297d8,ui/src/org/pentaho/di/ui/trans/steps/transexecutor/TransExecutorDialog.java,TransExecutorDialog,selectRepositoryTrans,#,570
Before Change
RepositoryDirectoryInterface repdir = sod.getDirectory();
if ( transName != null && repdir != null ) {
loadRepositoryTrans( transName, repdir );
wTransname.setText( executorTransMeta.getName() );
wDirectory.setText( executorTransMeta.getRepositoryDirectory().getPath() );
wFilename.setText( "" );
radioByName.setSelection( true );
radioFilename.setSelection( false );
After Change
RepositoryDirectoryInterface repdir = sod.getDirectory();
if ( transName != null && repdir != null ) {
loadRepositoryTrans( transName, repdir );
String path = getPath( executorTransMeta.getRepositoryDirectory().getPath() );
String fullPath = path + "/" + executorTransMeta.getName();
wPath.setText( fullPath );
specificationMethod = ObjectLocationSpecificationMethod.REPOSITORY_BY_NAME;
}
} catch ( KettleException ke ) {